1.30.7 - Authenticated Requests
· One min read
18/5/2023
Features
API Key Requests
With the positive feedback from last weeks Authenticated requests from Workflow Service Tasks, we have also added API key support. API Keys still are powered by RAPID Integrations on your site and can be configured in several ways depending on how your target API would prefer to receive its keys.
Custom Header
CUSTOM_KEY = "X-API-KEY"
GET / HTTP/1.1
Host: example.com
[CUSTOM_KEY]: [Your Integration Key]
Basic Authentication
GET / HTTP/1.1
Host: example.com
Authorization: Basic [Your Integration Key]
Query String
CUSTOM_KEY = "apiKEY"
GET / HTTP/1.1
Host: example.com
Params: {
[CUSTOM_KEY]: [Your Integration Key]
}
